home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000278_news@columbia.edu_Thu Jan 26 13:46:08 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13021
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 26 Jan 1995 08:46:18 -0500
  3. Received: by apakabar.cc.columbia.edu id AA24289
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 26 Jan 1995 08:46:16 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Can't connect at 28.8  :(
  9. Date: 26 Jan 1995 13:46:08 GMT
  10. Organization: Columbia University
  11. Lines: 61
  12. Message-Id: <3g8930$nms@apakabar.cc.columbia.edu>
  13. References: <jzeroD2x187.J3p@netcom.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <jzeroD2x187.J3p@netcom.com>, Jim Nakamura <jzero@netcom.com> wrote:
  18. >Whenever I connect to internet service provider, I get the message
  19. >
  20. >    CONNECT 14400/V32/NONE
  21. >    Can't change speed to 14400
  22. >
  23. >I am using Kermit(190) for Linux from a 486 PC Clone, together with
  24. >a 28.8 USR Sportster.
  25. >
  26. >My .mykermrc file has the following relevant lines:
  27. >
  28. >set delay 1                     ; I escape back quickly
  29. >set dial display on             ; I like to watch C-Kermit dial
  30. >set window 2                    ; Use 2 window slots
  31. >set block 3                     ; Use 16-bit CRC error checking        
  32. >set receive packet-length 1000  ; Use 1000-character Kermit packets 
  33. >set modem sportster
  34. >set line /dev/ttyS1
  35. >set speed 115200
  36. >set file type text
  37. >set file name lit
  38. >set dial init-string AT&F&A3&B1&H1&R2&D2&C1M0X4S0=0S7=90\{13}
  39. >
  40. >I copied my init string from the comm program which came with my
  41. >modem, thinking these people knew more than I.
  42. >
  43. >Can anyone suggest why I am not connecting at better rates?
  44. >
  45. As explained in the manual (just type "help" at the C-Kermit prompt
  46. to find out more about the manual), there are numerous ways in which
  47. you have to get the software (Kermit in this case) and the modem to
  48. agree.  Perhaps chief among them is the treatment of the interface speed.
  49.  
  50. Modems can be configured to make their interface speed follow the
  51. connection speed, or to keep their interface speed fixed no matter what
  52. the connection speed turns out to be.
  53.  
  54. Modern high-speed, error-correcting, data-compressing modems should
  55. generally be configured in the latter way: with interface speed fixed,
  56. or locked.
  57.  
  58. You have set your modem this way (&B1), but you did not set Kermit this
  59. way, so Kermit tried to change its interface speed to 14400 when it got
  60. the "CONNECT 14400" message from the modem.  Luckily, it could not do
  61. this, since evidently 14400 is not a supported speed on your computer.
  62.  
  63. The trick is to tell Kermit to use the highest reliable interface speed it
  64. and your computer and your modem all have in common, and to use RTS/CTS
  65. "hardware" flow control if available, and then before dialing, tell Kermit
  66. to "set dial speed-matching off".  See pages 60-61 of "Using C-Kermit" for
  67. a longer explanation.
  68.  
  69. >P.S., I noticed the above init string includes an &R2 which apparently
  70. >means "RX to DTE/RTS high".  Could someone please explain this
  71. >jibberish?  (-;
  72. >
  73. It probably means "don't let the modem send data to the computer unless
  74. the computer is asserting the Request To Send (RTS) signal".  That's one
  75. half (one direction) of the bidirectional RTS/CTS flow-control regime.
  76.  
  77. - Frank